/* 全局共用 */

* {
	padding: 0;
	margin: 0;
}

::-webkit-scrollbar {
	width: 10px;
	height: 1px;
}

::-webkit-scrollbar-thumb {
	background: #555;
}

::-webkit-scrollbar-track {
	/*滚动条里面轨道*/
	background: #f0f0f0;
}

body, html {
	width: 100%;
	min-width: 1260px;
	height: auto;
	margin: 0;
	padding: 0;
	background: #fff;
	overflow-x: hidden;
}

body, blockquote, dl, dt, dd, ul, ol, li, pre, form, fieldset, legend, button, input, textarea, th, td, img {
	border: medium none;
	outline: none;
}

body, td, button, input, select, textarea {
	color: #444;
	font: 12px 微软雅黑, Microsoft Yahei;
	line-height: 24px;
	outline: none;
}

a:link, a:active, a:visited {
	color: #444;
	text-decoration: none;
}

a:hover, a:focus {
	text-decoration: underline;
	color: #222;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

img {
	border: none;
}

form {
	margin: 0px;
	padding: 0px;
}

input:focus, textarea:focus, a:focus, select:focus {
	outline: none;
}

ul, ol, li {
	margin: 0px;
	padding: 0px;
	list-style-type: none;
}

.nowrap, ul.nowraps li {
	white-space: nowrap;
	text-overflow: ellipsis;
	-o-text-overflow: ellipsis;
	overflow: hidden;
}

.clear {
	clear: both;
}

.hide {
	display: none;
}

.right {
	float: right;
}

.left {
	float: left;
}

.hand {
	cursor: pointer;
}

.tips {
	height: auto;
	padding: 5px 20px;
	background: #666;
	color: #fff;
	line-height: 18px;
	position: fixed;
	z-index: 1000;
	top: 40%;
	left: 50%;
	FILTER: alpha(opacity=0);
	opacity: 0;
	font-size: 0.75em;
	text-align: center;
	border-radius: 15px;
}

.maskbg {
	width: 100%;
	height: 100%;
	position: fixed;
	left: 0;
	top: 0;
	z-index: 1000;
	background: rgba(0, 0, 0, 0.6);
	display: none;
	overflow: auto;
}

.coverimg img {
	transition: all 0.5s;
}

.coverimg:hover img {
	transform: scale(1.05);
	-ms-transform: scale(1.05);
	-moz-transform: scale(1.05);
	-webkit-transform: scale(1.05);
	-o-transform: scale(1.05);
}

.shadow {
	-moz-box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.1);
	-webkit-box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.1);
	box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.1);
}

/* placeholder颜色 */

::-webkit-input-placeholder {
	color: #999;
}

:-moz-placeholder {
	color: #999;
}

::-moz-placeholder {
	color: #999;
}

:-ms-input-placeholder {
	color: #999;
}

/* 开屏 */

.window_shade {
	position: fixed;
	z-index: 999;
	width: 100%;
	height: 100vh;
    left: 0;
    top: 0;
}

.window_shade .shade-top, .window_shade .shade-bottom {
	position: absolute;
	width: 100%;
	height: 50%;
	background: #fff;
	top: 0%;
	transition: all 1s cubic-bezier(0.77, 0, 0.175, 1) 0s;
	-webkit-transition: all 1s cubic-bezier(0.77, 0, 0.175, 1) 0s;
	-moz-transition: all 1s cubic-bezier(0.77, 0, 0.175, 1) 0s;
	-o-transition: all 1s cubic-bezier(0.77, 0, 0.175, 1) 0s;
	z-index: 1;
}

.window_shade .shade-bottom {
	top: auto;
	bottom: 0%;
}

.window_shade.show {
	visibility: hidden;
}

.window_shade.show .shade-top {
	top: -50%;
}

.window_shade.show .shade-bottom {
	bottom: -50%;
}

.headbox {
	width: 100%;
	height: 100px;
	position: relative;
}

.head {
	width: 100%;
	height: 100px;
	background: #fff;
	overflow: hidden;
	position: absolute;
	left: 0;
	top: 0;
	z-index: 1000;
}

.logo {
	width: auto;
	height: 55px;
	margin: 22px 150px 0 150px;
	float: left;
}
.logo_en {
	margin: 22px 100px 0 100px;
}

.logo img {
	display: block;
	height: 100%;
	width: auto;
}

.menu {
	float: left;
	height: 70px;
	overflow: hidden;
}
.menu.on {
	height: auto;
	padding-bottom: 50px;
}

.menu li {
	float: left;
	height: auto;
	overflow: hidden;
}

.menu li a {
	display: block;
	height: auto;
	line-height: 18px;
	padding: 6px 0;
	color: #666;
	text-decoration: none;
	overflow: hidden;
}
.menu li a:hover {
	color: #c60000;
}

.menu li a.h1 {
	height: 100px;
	font-size: 15px;
	line-height: 100px;
	padding: 0;
	margin-right: 65px;
	color: #444;
	position: relative;
	white-space: nowrap;
	overflow: hidden;
}
.menu li a.h1:after {
	content: "";
	position: absolute;
	width: 0;
	height: 1px;
	left: 50%;
	top: 10px;
	z-index: 10;
	background: transparent;
	-webkit-transition: all 0.5s ease;
	-moz-transition: all 0.5s ease;
	-ms-transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
	transition: all 0.5s ease;
}
.menu li:hover a.h1:after,.menu li a.h1.on::after {
	width: 100%;
	left: 0;
	background: #c60000;
}


.topb {
	float: right;
	padding: 30px 80px 0 0;
	overflow: hidden;
}

.topb a,.topb span {
	width: 40px;
	height: 35px;
	border: 1px solid #eee;
	border-radius: 3px;
	margin-left: 15px;
	float: left;
	font-size: 14px;
	line-height: 35px;
	text-align: center;
	text-decoration: none;
	cursor: pointer;
}

.topb span img {
	width: 15px;
	height: 15px;
	margin: 10px auto;
}

.topb span {
	margin-left: 0;
}
.seekbox {
	width: 380px;
	height: 180px;
	position: absolute;
	right: 0;
	top: 100px;
	background: #fff;
	padding: 20px 0 0 60px;
	cursor:default;
	z-index: 100;
	display: none;
}
.seekbox input.inp {
	width: 320px;
	height: 50px;
	border: none;
	border-bottom: 1px solid #999;
	font-size: 14px;
	line-height: 50px;
	background: none;
}
.seekbox input.seekb {
	display: block;
	width: 120px;
	height: 40px;
	background: #518cbf;
	text-align: center;
	border: none;
	font-size: 14px;
	line-height: 40px;
	cursor: pointer;
	color: #fff;
	margin-top: 30px;
}


.footbox {
	width: 100%;
	height: auto;
	overflow: hidden;
	background: #252528;
}

.foot {
	width: 100%;
	height: auto;
	padding: 30px 0;
	text-align: center;
	overflow: hidden;
	font-size: 0;
}

.foot ul {
	display: inline-block;
	vertical-align: top;
	border-left: 1px solid #555;
	padding: 0 50px 10px 10px;
}

.foot ul li {
	height: 30px;
	line-height: 30px;
	overflow: hidden;
	text-align: left;
	color: #ccc;
	font-size: 12px;
}

.foot ul li.father {
	margin-bottom: 10px;
	font-size: 15px;
	line-height: 20px;
	font-weight: bold;
}

.foot ul li a {
	text-decoration: none;
	color: #ccc;
	padding: 0 5px;
}

.foot ul li a:hover {
	background: #775c39;
}

.fbq {
	width: 100%;
	height: auto;
	overflow: hidden;
	background: rgba(0, 0, 0, 0.3);
	color: #aaa;
	text-align: center;
	line-height: 28px;
	padding: 15px 0 10px 0;
	font-size: 14px;
}

.gzh {
	width: 150px;
	height: auto;
	display: inline-block;
	vertical-align: top;
}
.gzh img {
	width: 100px;
	height: 100px;
	display: block;
	margin: 0 auto 5px auto;
}
.bqc {
	width: auto;
	display: inline-block;
	vertical-align: top;
	text-align: left;
	padding-top: 20px;
}
.bqc a {
	color: #ccc;
}

.secban {
	width: 100%;
	height: auto;
	overflow: hidden;
}
.secban img {
	width: 100%;
	height: auto;
	display: block;
}
.secbar {
	width: 100%;
	height: 60px;
	background: #518cbf;
	text-align: center;
}
.secbar a {
	display: inline-block;
	line-height: 60px;
	padding: 0 40px;
	font-size: 14px;
	text-decoration: none;
	color: #fff;
	vertical-align: top;
}
.secbar a:hover,.secbar a.on {
	background-image: linear-gradient(#deebf5,#fff);
	color: #333;
}
.secbar a.on {
	font-weight: bold;
	font-size: 16px;
}

/* 页码 */

.page {
	width: 100%;
	height: auto;
	padding: 60px 0 80px 0;
	overflow: hidden;
	text-align: center;
	font-size: 0;
}

.total {
	display: inline-block;
	height: 40px;
	color: #333;
	background: #e9ecf0;
	font-size: 14px;
	line-height: 40px;
	padding: 0 20px;
	vertical-align: top;
}

.page a {
	display: inline-block;
	width: 40px;
	height: 40px;
	line-height: 40px;
	text-align: center;
	color: #333;
	background: #e9ecf0;
	font-size: 14px;
	text-decoration: none;
	vertical-align: top;
	margin-left: 4px;
}

.page a.cur {
	background: #60b8f7;
	color: #fff;
}

.page a img {
	margin-top: 5px;
}

.secpagetz {
	width: 100px;
	height: 38px;
	display: inline-block;
	border: 1px solid #e5e5e5;
	color: #999999;
	line-height: 38px;
	overflow: hidden;
	font-size: 14px;
	vertical-align: top;
	margin-left: 4px;
}
.secpagetz input {
	width: 38px;
	height: 38px;
	line-height: 38px;
	border: 0;
	font-size: 14px;
	padding: 0;
	margin: 0;
}

.secpagebtn {
	width: 40px;
	height: 40px;
	background: #e9ecf0;
	text-align: center;
	line-height: 40px;
	display: inline-block;
	cursor: pointer;
	font-size: 14px;
	vertical-align: top;
}


@media screen and (max-width: 1450px) {
	.headbox, .head {
		height: 80px;
	}
	.logo {
		height: 40px;
		margin: 20px 60px 0 60px;
	}
	.menu {
		padding-bottom: 30px;
	}
	.menu li a.h1 {
		height: 80px;
		font-size: 14px;
		line-height: 80px;
		margin-right: 50px;
	}
	.menu_en li a.h1 {
		font-size: 12px;
	}
	.topb {
		padding: 20px 40px 0 0;
	}
	.topb a {
		width: 35px;
		font-size: 12px;
	}
	.fbq {
		line-height: 24px;
		padding: 10px 0;
		font-size: 12px;
	}
	.foot {
		padding: 20px 0;
	}
	.foot ul li {
		height: 26px;
		line-height: 26px;
	}
	.foot ul li.father {
		font-size: 14px;
	}
	.secbar {
		height: 50px;
	}
	.secbar a {
		line-height: 50px;
	}
	.secbar_en {
		height: auto;
		overflow: hidden;
	}
	.secbar_en a {
		padding: 0 25px;
		font-size: 12px;
	}
}